php forum
php mysql forum
php mysql smarty
 
Page 1 of 4 1 2 3 4 >
Topic Options
#314326 - 06/05/07 02:07 PM [7.0-7.3] RSS Topic Creator [Release Candidate]
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
This mod will import RSS feeds as new topics. You can specify which forums the topics are posted to, and who posts them.

Installation file is included in zip. Upload the files following the structure I created in the zip.

Example: [Link Removed]

A version for 7.4+ can be found here.


Attachments
2402-RSSTopicCreator.zip (97 downloads)


Top
#314329 - 06/05/07 04:14 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian Spence]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
Thanks Ian.

Is this the same as the beta version?
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#314330 - 06/05/07 04:21 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
it's the same as the latest one I posted in that topic, now it has instructions for installation

Top
#314337 - 06/05/07 08:26 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian Spence]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Is there an upgrade script as well, or do we need to alter tables manually?
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#314339 - 06/05/07 09:14 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
alter manually

Top
#314340 - 06/05/07 09:29 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian Spence]
Mors Offline
User

Registered: 03/31/01
Posts: 49
Ian this is awesome. Thank you very much.. Now to get it working for me smile

Top
#314350 - 06/06/07 05:06 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Mors]
Mors Offline
User

Registered: 03/31/01
Posts: 49
I made a mistake when entering RSS feeds that didn't have any existing data on them ie: future RSS outlets that haven't been used. The program stopped visiting any additional RSS URLs entered in the list the second it found a URL with absolutely no data on it.

So when setting up RSS feed URLs make sure they have existing data on them. When it hits a null it just stopped polling past that url. Other then that this is an oustanding mod..

Thanks so much Ian Spence smile

FYI for now smile

Top
#314351 - 06/06/07 05:22 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Mors]
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Have added an updated version.

Top
#314352 - 06/06/07 05:44 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian Spence]
Mors Offline
User

Registered: 03/31/01
Posts: 49
Thanks Ian smile

Again well done!!

Top
#314354 - 06/07/07 12:35 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Mors]
SGHB1138 Offline
Power User

Registered: 01/01/07
Posts: 59
Loc: UK
*curses himself for not being able to do this*

*curses himself for not being able to get other stuff to work*

frown
_________________________
Stephen G
Give Yourself to the Geek Side @
http://cinemageek.co.uk

Top
#314355 - 06/07/07 01:13 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: SGHB1138]
SGHB1138 Offline
Power User

Registered: 01/01/07
Posts: 59
Loc: UK
Do we need to add the tables manually?
_________________________
Stephen G
Give Yourself to the Geek Side @
http://cinemageek.co.uk

Top
#314359 - 06/07/07 03:43 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: SGHB1138]
SGHB1138 Offline
Power User

Registered: 01/01/07
Posts: 59
Loc: UK
frown

Totally unfamiliar with PhpAdmin I copy n pasted this:

Code:
CREATE TABLE %%TABLE_PREFIX%%TOPIC_FEEDS (
	FEED_ID int(4) unsigned not null auto_increment primary key,
	USER_ID int(9) unsigned not null,
	FORUM_ID int(9) unsigned not null,
	FEED_URL varchar(255),
	LAST_BUILD int(11) unsigned not null default '0',
	LAST_TOPIC_TIME int(11) unsigned not null default '0',
	CACHE_TIME int(9) unsigned not null default '30',
	TITLE_PREFIX varchar(32),
	BODY_FORMAT text,
	FEED_IS_ENABLED tinyint(1) default '1',
	FEED_WAS_ESCAPED tinyint(1) default '0',
	PARSE_BBCODE tinyint(1) default '0',
	TOPIC_ICON varchar(30),
	REGEXP_SPECIAL text
) TYPE=MyISAM



Into my Query window...resulting in this:


Code:
Error

There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem

ERROR: Unknown Punctuation String @ 14
STR: %%
SQL: CREATE TABLE %%TABLE_PREFIX%%TOPIC_FEEDS (
	FEED_ID int(4) unsigned not null auto_increment primary key,
	USER_ID int(9) unsigned not null,
	FORUM_ID int(9) unsigned not null,
	FEED_URL varchar(255),
	LAST_BUILD int(11) unsigned not null default '0',
	LAST_TOPIC_TIME int(11) unsigned not null default '0',
	CACHE_TIME int(9) unsigned not null default '30',
	TITLE_PREFIX varchar(32),
	BODY_FORMAT text,
	FEED_IS_ENABLED tinyint(1) default '1',
	FEED_WAS_ESCAPED tinyint(1) default '0',
X	PARSE_BBCODE tinyint(1) default '0',
	TOPIC_ICON varchar(30),
	REGEXP_SPECIAL text
) TYPE=MyISAM


SQL query:

CREATE TABLE %%TABLE_PREFIX%%TOPIC_FEEDS ( FEED_ID int(4) unsigned not null auto_increment primary key, USER_ID int(9) unsigned not null, FORUM_ID int(9) unsigned not null, FEED_URL varchar(255), LAST_BUILD int(11) unsigned not null default '0', LAST_TOPIC_TIME int(11) unsigned not null default '0', CACHE_TIME int(9) unsigned not null default '30', TITLE_PREFIX varchar(32), BODY_FORMAT text, FEED_IS_ENABLED tinyint(1) default '1', FEED_WAS_ESCAPED tinyint(1) default '0', PARSE_BBCODE tinyint(1) default '0', TOPIC_ICON varchar(30), REGEXP_SPECIAL text ) TYPE=MyISAM

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%%TABLE_PREFIX%%TOPIC_FEEDS (
    FEED_ID int(4) unsigned not null



frown
_________________________
Stephen G
Give Yourself to the Geek Side @
http://cinemageek.co.uk

Top
#314360 - 06/07/07 03:50 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: SGHB1138]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
where it says %%TABLE_PREFIX%% replace this with your usual table prefix - probably ubbt_

_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#314361 - 06/07/07 04:48 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
SGHB1138 Offline
Power User

Registered: 01/01/07
Posts: 59
Loc: UK
*sighs happily*

Thank You

smile
_________________________
Stephen G
Give Yourself to the Geek Side @
http://cinemageek.co.uk

Top
#314363 - 06/07/07 05:26 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: SGHB1138]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
no worries smile
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#314364 - 06/07/07 01:56 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Mors Offline
User

Registered: 03/31/01
Posts: 49
you can also use the SQL command in your control panel to do this..

Top
#314365 - 06/07/07 07:31 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Mors]
SGHB1138 Offline
Power User

Registered: 01/01/07
Posts: 59
Loc: UK
Thank you too.

smile
_________________________
Stephen G
Give Yourself to the Geek Side @
http://cinemageek.co.uk

Top
#314392 - 06/12/07 10:04 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: SGHB1138]
FREAK1 Offline
User

Registered: 07/01/03
Posts: 46
I look at this and it is 100% Greek to me. It is exactly what I am looking for, but have no clue as to what to do. I downloaded the zip file, and man I feel dumber than an ox.

Top
#314393 - 06/12/07 02:28 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: FREAK1]
Ian Spence Offline
Master Hacker

Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
Upload the each of those folders to your forums directory (the directory containing ubbthreads.php)

That'll leave the structure something like

../ubbthreads.php
../cache_builders/rss_topic_creator.php
../languages/english/admin/topic_feeds.php

Then open the txt file and follow the instructions in there. You'll run the one query, replacing %%TABLE_PREFIX%% with the table prefix used at your forums.

You'll then use your trusty text editor (notepad if you have nothing better) to edit a couple of files specified, and then you upload the modified files.

Go to your control panel, click "Topic Feeds" in the left bar, and set the feeds up

Top
#314649 - 07/06/07 03:25 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian Spence]
Calpy Offline
Power User

Registered: 12/17/02
Posts: 71
Thanks for this, Ian. This was exactly what I needed.

Top
#315171 - 08/12/07 06:58 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Calpy]
A.J. Drew Offline
Lurker

Registered: 02/22/03
Posts: 6
Loc: Columbus, Oh
I have the tables created and files uploaded / modified. I can use the admin panel to add feeds to forums, but nothing is actually taking place / nothing is bieng added to the forum.

I type in the url of script which triggers things. It executes just fine, but does not add any informaiton to the DB about the new topics it finds.

Is it possible that the changes made between 7.1 and 7.2 (some tables changed) and this mod simply do not work well togeather?
_________________________
IAΩ ABPAΣAΞ AΔΩN ATA

Top
#315185 - 08/13/07 01:07 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian Spence]
A.J. Drew Offline
Lurker

Registered: 02/22/03
Posts: 6
Loc: Columbus, Oh
After install, i had a problem where only some feeds would work. It looks like if the feed does not provide a date for each topic, the mod will not work. If that sounds right, why not change it so that it defaults to todays date?
_________________________
IAΩ ABPAΣAΞ AΔΩN ATA

Top
#316307 - 11/11/07 11:40 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: A.J. Drew]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
I am still getting 2 or 3 copies of each feed.

I installed the latest version from the first post, set up a new forum and linked to a new rss feed from google.

However I still got 2 or 3 copies of each feed frown
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#316308 - 11/11/07 07:20 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
One thing that sucks is that sites with popular editors will take and rename the feed topic several times sometimes... Which will be grabbed each time, which is entertaining to say the least (reuters tech is what I'm viewing)
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#316309 - 11/12/07 07:48 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
True - but I do not see this issue on feeds pulled in from the same sources on F*sion
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#316310 - 11/12/07 07:56 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
Just noticed on this one I set up - I have two new articles - each have been repeated 10 times LOL - this is hidden at the moment from users, so it is not an issue - but it also means I can not use this script in real time yet.
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#316311 - 11/12/07 11:27 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
'eh get a couple editors to troll for dups; that's ultimately what i do
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#316312 - 11/12/07 01:19 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
Sorry Gizzy - not a solution frown
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#316313 - 11/12/07 01:24 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
arrghhh!! Just gone to my forums and I have 5 news items - each published over 40 times frown frown

Are you serious in saying people should manually edit these daily???
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#316317 - 11/12/07 03:58 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
I've never got more than 3 and it was due to changing the title
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#316319 - 11/12/07 04:20 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
previously I had only had 10 - 40 copies of 5 news items was the largest frown

These are all identical, all at the same time.

_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#316935 - 05/10/08 03:55 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Calpy]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
This won't work in 7.3; the error is:
Quote:
[Sat May 10 04:50:16 2008] [error] [client 76.115.79.184] PHP Fatal error: Class 'HTML' not found in /home/undergroundnews/public_html/forum/cache_builders/rss_topic_creator.php on line 22, referer: http://www.undergroundnews.com/forum/ubbthreads.php/forums/27/1/Technology.html
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#316938 - 05/10/08 04:32 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
With some help from SD I have this up and running again...

Change:
Code:
// Setup the smarty class
require_once('../libs/smarty/Smarty.class.php');
$smarty = new Smarty();
$smarty->template_dir = 'templates/default';
$smarty->compile_dir = 'templates/compile';
// include all of the required libraries
require_once( "../libs/phpmailer/class.phpmailer.php" );
require_once( "../includes/config.inc.php" );
require_once( "../libs/mysql.inc.php" );
require_once( "../libs/ubbthreads.inc.php" );

/**
 * Should each new item increase the user's post count?
 */
$config['TOPIC_FEED_INC_POSTCOUNT'] = true;

$html =& new html;


To:
Code:
// Setup the smarty class
require('../libs/smarty/Smarty.class.php');
$smarty = new Smarty();

$smarty->template_dir = 'templates/default';
$smarty->compile_dir = 'templates/compile';

// include all of the required libraries
require_once("../libs/phpmailer/class.phpmailer.php");
require_once("../includes/config.inc.php");
require_once("../libs/mysql.inc.php");
require_once("../libs/bbcode.inc.php");
require_once("../styles/wrappers.php");
require_once("../libs/html.inc.php");
require_once("../libs/mailer.inc.php");
require_once("../libs/user.inc.php");
require_once("../libs/ubbthreads.inc.php");

/**
 * Should each new item increase the user's post count?
 */
$config['TOPIC_FEED_INC_POSTCOUNT'] = true;

$html =& new html;


/me bows
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#316939 - 05/10/08 04:46 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
_________________________

Top
#316940 - 05/11/08 07:40 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: sirdude]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
Still creates multiple copies of feeds as posts frown

Have had to stop using it.
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#316943 - 05/11/08 05:51 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Actually, I think I know the cause of that... Once I took it out of the footer (to where it's loaded every page load) and put it in the forum stats island so it's cached it only pulls one copy...

I think it's the occasional X amout of people hitting it at the same time when it's supposed to refresh that gets doubles...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#316972 - 05/15/08 01:08 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Anyone have any idea why nothing is being populated to the Active Topics display?
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#316973 - 05/15/08 03:54 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
To my knowledge it never was.
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#316974 - 05/15/08 06:23 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
It was for me prior to 7.3 frown... At least, I recall it being lol...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#316979 - 05/16/08 04:23 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
For me having 900+ posts a day, it would make little difference. wink
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#316980 - 05/16/08 06:27 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian_W]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
i could only wish....
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#316981 - 05/16/08 07:04 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
blaaskaak Offline
Enthusiast

Registered: 02/25/07
Posts: 329
Loc: The Netherlands
Originally Posted By: Gizmo
i could only wish....


well, get a cool forum then smile

Our daily post count in april varied from 769 to 1429. Average 1040.
_________________________

Top
#316982 - 05/16/08 06:55 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: blaaskaak]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
We used to be a very lively place; but most of our seasoned members grew up and had kids, so they don't come around much anymore... We've got a long standing community as well; so it's not like we're some "we just made it" site wink...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#317129 - 05/31/08 07:41 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Anyone have any idea why posts created with this script will not show in a post island? It's quite an annoyance lol...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#317130 - 05/31/08 09:25 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
AllenAyres Offline

I type Like navaho

Registered: 03/10/00
Posts: 25580
Loc: Texas
It must be skipping the step where it triggers the post island insertion.
_________________________
- Allen wavey
- What Drives You?

Top
#317163 - 06/04/08 06:14 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: AllenAyres]
Grymmie Offline
Lurker

Registered: 12/11/07
Posts: 7
I've followed all the directions. Everything seems to be ok, with the following exception:

The Create Topic Feed from the Control Panel does not show any forums to put the topics into. All I see is a vertical blank selection box.

Please advise.

Thanks in advance.


Top
#317761 - 01/24/09 10:58 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Grymmie]
DLWebmaestro Offline
Addict

Registered: 08/08/00
Posts: 1802
Loc: North Carolina
GREAT mod! Thanks very much for this! smile A few things...

When I try to create a topic feed, I always get:
Quote:
It appears that you have reached an update page without submitting any data.


confused

I'm guessing the form data is not being passed for some reason, causing me to get this generic UBB admin error.

I'm running 7.4.2. Has anyone else tried this mod on this version? Well, in the mean time, I can just edit things in the database directly with phpMyAdmin.

Also, it appears it does not support feeds that use ASP. Is this correct?

One feed uses
Code:
&
in their URLs, and this is completely stripped out of the URL when posted to my board, even with the FEED_WAS_ESCAPED option checked...

How would I strip out
Code:
<br />
from the feeds? I can't figure it out and have never been that good at preg_replace

If I specify in Portal Settings to pull from forums created using this mod, it won't pull from them... I just get a big blank space staring at me...


Edited by DL.Webmaestro (01/25/09 11:44 PM)

Top
#317768 - 01/28/09 07:38 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: ]
DLWebmaestro Offline
Addict

Registered: 08/08/00
Posts: 1802
Loc: North Carolina
I miss the days when this community was active... frown

Top
#317769 - 01/29/09 07:30 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: ]
blaaskaak Offline
Enthusiast

Registered: 02/25/07
Posts: 329
Loc: The Netherlands
I miss the days with loads of free time on my hand. The "It appears that you have reached an update page without submitting any data." problem is easy to fix. Since 7.4.1 (I think?) all forms had a form_is_valid field added. You need to add this to custom scripts too.
_________________________

Top
#317777 - 01/31/09 07:41 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: blaaskaak]
DLWebmaestro Offline
Addict

Registered: 08/08/00
Posts: 1802
Loc: North Carolina
Thanks blaaskaak! I found the fix...
In edit_feeds.tmpl, after:
Php Code:
<input type="hidden" name="returntab" value="$returntab" /> 
add:
Php Code:
<input type="hidden" name="valid_post" value="1" /> 


One strange thing I noticed...

I had changed my forums around a little bit after I installed this mod. I renamed a forum and added some. On the edit pages, it is still showing the old way. I'm guessing it's not pulling these from the DB, and from some flat-file somewhere perhaps? :shrug:

Top
#317780 - 02/01/09 03:05 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: ]
blaaskaak Offline
Enthusiast

Registered: 02/25/07
Posts: 329
Loc: The Netherlands
Could be that your cache is outdated. I don't know the exact way it handles things, but it does cache the forumlist on some pages. Maybe remove everything from the cache directory except the index.html file?
_________________________

Top
#317817 - 02/17/09 11:52 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: blaaskaak]
DLWebmaestro Offline
Addict

Registered: 08/08/00
Posts: 1802
Loc: North Carolina
Decided to look into it. Seems it was using a deprecated cache file. I am using 7.4.2 and to do this to fix it:

In admin/edittopicfeed.php find:
Php Code:
(file_exists("{$config['FULL_PATH']}/cache/forum_list.php")) ? include("{$config['FULL_PATH']}/cache/forum_list.php") : $tree = array() ; 
and replace with
Php Code:
(file_exists("{$config['FULL_PATH']}/cache/forum_cache.php")) ? include("{$config['FULL_PATH']}/cache/forum_cache.php") : $tree = array() ; 

Top
#317886 - 03/05/09 05:44 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Calpy]
Mors Offline
User

Registered: 03/31/01
Posts: 49
This seems to be broken for 7.5

The scripts reference files that don't exist such as Forums_list.php is now called Forums_cache.php etc.

I go to add an RSS feed link and it says the following:

It appears that you have reached an update page without submitting any data.

Can someone take a quick look at this and post an update.

Thanks a bunch..

Top
#317887 - 03/05/09 05:49 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Mors]
Mors Offline
User

Registered: 03/31/01
Posts: 49
Is there a fully working version for 7.5 with all changes necessary etc.. ?

I just read all the posts now.. hmmmm

Top
#317888 - 03/05/09 06:27 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Mors]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Nope, ian's gone AWOL; the issue with the CP stuff is the same as the bugs at UBBCentral for 7.4
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#318542 - 03/26/10 09:55 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Vic Offline
Lurker

Registered: 03/26/10
Posts: 7
is there a more easy way to install this instead of playing with tables? Also does it work on 7.5.5?

Top
#318543 - 03/27/10 04:51 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Ian Spence]
nans Offline
Lurker

Registered: 10/10/04
Posts: 9
Who is using this? Where can I see this?

F

Top
#318544 - 03/27/10 10:00 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: nans]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
I'm running it here
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#318545 - 03/28/10 06:24 AM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
nans Offline
Lurker

Registered: 10/10/04
Posts: 9
tx!

Top
#318551 - 04/03/10 07:58 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Calpy]
Vic Offline
Lurker

Registered: 03/26/10
Posts: 7
I have installed this but when i go to admin control panel and go to topic feeds, down the page where it says Forum to put the topics into: the box is blank with no list of my topics in there.

Can anyone help please?


Edited by Vic (04/03/10 08:24 PM)

Top
#318552 - 04/03/10 08:49 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Vic]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
I'm not too sure what changed in the CP since I had initially installed it; I know it definitely has its short falls on things that don't work 100%...

Ian isn't really involved with the UBB anymore and I'm not really sure if anyone has really looked at the base code anytime since the mod was made...

When I get some more time I can try to hack the CP area to get it working though; but I've been really swamped with my own coding lately (hence why I haven't been as active as I used to be here lol)
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#318554 - 04/03/10 10:50 PM Re: [7.0-7.3] RSS Topic Creator [Release Candidate] [Re: Gizmo]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
A patched copy for v7.4+ can be found here.
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
Page 1 of 4 1 2 3 4 >



Moderator:  sirdude 
Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks